projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0645c0f
)
Build fix for glibc systems.
author
Lars Ingebrigtsen
<larsi@gnus.org>
Mon, 1 Feb 2016 02:06:58 +0000
(
03:06
+0100)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Mon, 1 Feb 2016 02:06:58 +0000
(
03:06
+0100)
src/process.c
patch
|
blob
|
history
diff --git
a/src/process.c
b/src/process.c
index 5fee8b0cc3235e7c8473c99f03fa42a89159e5db..0e4fcb2c0a984ea2372f8139b8a564dc6354d40d 100644
(file)
--- a/
src/process.c
+++ b/
src/process.c
@@
-3318,6
+3318,7
@@
void connect_network_socket (Lisp_Object proc, Lisp_Object ip_addresses)
}
+#ifndef HAVE_GETADDRINFO
static Lisp_Object
conv_numerical_to_lisp (unsigned char *number, unsigned int length, int port)
{
@@
-3331,6
+3332,7
@@
conv_numerical_to_lisp (unsigned char *number, unsigned int length, int port)
return address;
}
+#endif
/* Create a network stream/datagram client/server process. Treated
exactly like a normal process when reading and writing. Primary
@@
-3699,6
+3701,7
@@
usage: (make-network-process &rest ARGS) */)
if (!NILP (host))
{
struct addrinfo *res, *lres;
+ int ret;
immediate_quit = 1;
QUIT;